From: Camila Ayres Date: Tue, 4 Mar 2025 13:41:53 +0000 (+0100) Subject: Remove aditional text when error occurs. X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~2^2~4^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=dfff06eb16e53b6bf9d43ba42b533fdc7987a560;p=nextcloud-desktop.git Remove aditional text when error occurs. Additional text was not user friendly since Sparkle throws an error when no new update is available. Signed-off-by: Camila Ayres --- diff --git a/src/gui/updater/sparkleupdater_mac.mm b/src/gui/updater/sparkleupdater_mac.mm index ef167d955..05c868e1e 100644 --- a/src/gui/updater/sparkleupdater_mac.mm +++ b/src/gui/updater/sparkleupdater_mac.mm @@ -129,8 +129,7 @@ private: { Q_UNUSED(updater) - const auto errorQstring = QString::fromNSString(error.localizedDescription); - const auto message = QObject::tr("Aborted with error: %1", "%1 is version number").arg(errorQstring); + const auto message = QString::fromNSString(error.localizedDescription); [self notifyStateChange:OCC::SparkleUpdater::State::Idle displayStatus:message]; }